/*
  ArtToSpr Artworks/Draw to Sprite convertor
  Copyright (c) 1998 Tony Houghton

  This source is distributed under the GPL. Please see the file
  "COPYING" for details.
*/

#ifndef __version_h
#define __version_h
/* Version information */

#ifndef os_H
#include "os.h"
#endif

#ifdef __cplusplus
extern "C" {
#endif

extern char version_string[];

extern const char *version_date(void);

extern os_date_and_time version_utc;

#ifdef __cplusplus
}
#endif

#define version_NUMBER ((unsigned) (version_string[0]-'0')*100 + \
	(version_string[2]-'0')*10 + (version_string[3]-'0'))

#endif
